home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 23 / AMIGAplus Sonderheft 23 (2000)(Falke)(DE)[!].iso / Updates / DOS / DisplayBeep / DisplayBeep.c < prev    next >
C/C++ Source or Header  |  1999-11-08  |  513b  |  24 lines

  1. /*
  2.  * $Id: DisplayBeep.c 0.2 1994/08/14 12:43:08 Gérard_Cornu Exp Gérard_Cornu $
  3.  *
  4.  * $Log: DisplayBeep.c $
  5.  * Revision 0.2  1994/08/14  12:43:08  Gérard_Cornu
  6.  * First release ;-)
  7.  *
  8.  *
  9.  *
  10.  */
  11.  
  12. #include "DisplayBeepheader.h"
  13.  
  14. static const char version[] = "\0$VER: DisplayBeep 0.2 © Gérard Cornu " __AMIGADATE__ " "__TIME__;
  15.  
  16. void DisBeep(void)
  17. {
  18.    struct Library *IntuitionBase;
  19.    if ((IntuitionBase = OpenLibrary("intuition.library", 0))) {
  20.       DisplayBeep(0L);
  21.       CloseLibrary(IntuitionBase);
  22.    }
  23. }
  24.